home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 242 / Issue 242 - April 2008 - DPCS0408DVD.ISO / Software Money Savers / VirtualDub / Source / VirtualDub-1.7.7-src.7z / src / h / vd2 / system / event.h < prev    next >
Encoding:
C/C++ Source or Header  |  2007-09-03  |  3.0 KB  |  103 lines

  1. //    VirtualDub - Video processing and capture application
  2. //    System library component
  3. //    Copyright (C) 1998-2006 Avery Lee, All Rights Reserved.
  4. //
  5. //    Beginning with 1.6.0, the VirtualDub system library is licensed
  6. //    differently than the remainder of VirtualDub.  This particular file is
  7. //    thus licensed as follows (the "zlib" license):
  8. //
  9. //    This software is provided 'as-is', without any express or implied
  10. //    warranty.  In no event will the authors be held liable for any
  11. //    damages arising from the use of this software.
  12. //
  13. //    Permission is granted to anyone to use this software for any purpose,
  14. //    including commercial applications, and to alter it and redistribute it
  15. //    freely, subject to the following restrictions:
  16. //
  17. //    1.    The origin of this software must not be misrepresented; you must
  18. //        not claim that you wrote the original software. If you use this
  19. //        software in a product, an acknowledgment in the product
  20. //        documentation would be appreciated but is not required.
  21. //    2.    Altered source versions must be plainly marked as such, and must
  22. //        not be misrepresented as being the original software.
  23. //    3.    This notice may not be removed or altered from any source
  24. //        distribution.
  25.  
  26. #ifndef f_VD2_SYSTEM_EVENT_H
  27. #define f_VD2_SYSTEM_EVENT_H
  28.  
  29. struct VDDelegateNode {
  30.     VDDelegateNode *mpNext, *mpPrev;
  31. };
  32.  
  33. class VDDelegate;
  34.  
  35. class VDEventBase {
  36. protected:
  37.     VDEventBase();
  38.     ~VDEventBase();
  39.  
  40.     void Add(VDDelegate&);
  41.     void Remove(VDDelegate&);
  42.     void Raise(void *src, const void *info);
  43.  
  44.     VDDelegateNode mAnchor;
  45. };
  46.  
  47. template<class Source, class ArgType>
  48. class VDDelegateBinding {
  49. public:
  50.     VDDelegate *mpBoundDelegate;
  51. };
  52.  
  53. class VDDelegate : public VDDelegateNode {
  54.     friend class VDEventBase;
  55. public:
  56.     VDDelegate();
  57.     ~VDDelegate();
  58.  
  59.     template<class T, class Source, class ArgType>
  60.     VDDelegateBinding<Source, ArgType> operator()(T *obj, void (T::*fn)(Source *, const ArgType&)) {
  61.         mpCallback = Adapter<T, Source, ArgType, void (T::*)(Source *, const ArgType&)>;
  62.         mpObj = obj;
  63.         mpFn = reinterpret_cast<void(Holder::*)()>(fn);
  64.         VDDelegateBinding<Source, ArgType> binding = {this};
  65.         return binding;
  66.     }
  67.  
  68. protected:
  69.     template<class T, class Source, class ArgType, typename T_Fn>
  70.     static void Adapter(void *src, const void *info, VDDelegate& del) {
  71.         return (((T *)del.mpObj)->*reinterpret_cast<T_Fn>(del.mpFn))(static_cast<Source *>(src), *static_cast<const ArgType *>(info));
  72.     }
  73.  
  74.     void (*mpCallback)(void *src, const void *info, VDDelegate&);
  75.     void *mpObj;
  76.  
  77. #ifdef _MSC_VER
  78.     class __multiple_inheritance Holder;
  79. #else
  80.     class Holder;
  81. #endif
  82.  
  83.     void (Holder::*mpFn)();
  84. };
  85.  
  86. template<class Source, class ArgType>
  87. class VDEvent : public VDEventBase {
  88. public:
  89.     void operator+=(const VDDelegateBinding<Source, ArgType>& binding) {
  90.         Add(*binding.mpBoundDelegate);
  91.     }
  92.  
  93.     void operator-=(const VDDelegateBinding<Source, ArgType>& binding) {
  94.         Remove(*binding.mpBoundDelegate);
  95.     }
  96.  
  97.     void Raise(Source *src, const ArgType& args) {
  98.         VDEventBase::Raise(src, &args);
  99.     }
  100. };
  101.  
  102. #endif
  103.